home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / warnings.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  8KB  |  287 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Python part of the warnings subsystem.'''
  5. import sys
  6. import types
  7. import linecache
  8. __all__ = [
  9.     'warn',
  10.     'showwarning',
  11.     'formatwarning',
  12.     'filterwarnings',
  13.     'resetwarnings']
  14. filters = []
  15. defaultaction = 'default'
  16. onceregistry = { }
  17.  
  18. def warn(message, category = None, stacklevel = 1):
  19.     '''Issue a warning, or maybe ignore it or raise an exception.'''
  20.     if isinstance(message, Warning):
  21.         category = message.__class__
  22.     
  23.     if category is None:
  24.         category = UserWarning
  25.     
  26.     if not issubclass(category, Warning):
  27.         raise AssertionError
  28.     
  29.     try:
  30.         caller = sys._getframe(stacklevel)
  31.     except ValueError:
  32.         globals = sys.__dict__
  33.         lineno = 1
  34.  
  35.     globals = caller.f_globals
  36.     lineno = caller.f_lineno
  37.     if '__name__' in globals:
  38.         module = globals['__name__']
  39.     else:
  40.         module = '<string>'
  41.     filename = globals.get('__file__')
  42.     None if filename else None<EXCEPTION MATCH>AttributeError
  43.     if not filename:
  44.         filename = module
  45.     
  46.     registry = globals.setdefault('__warningregistry__', { })
  47.     warn_explicit(message, category, filename, lineno, module, registry, globals)
  48.  
  49.  
  50. def warn_explicit(message, category, filename, lineno, module = None, registry = None, module_globals = None):
  51.     if module is None:
  52.         if not filename:
  53.             pass
  54.         module = '<unknown>'
  55.         if module[-3:].lower() == '.py':
  56.             module = module[:-3]
  57.         
  58.     
  59.     if registry is None:
  60.         registry = { }
  61.     
  62.     if isinstance(message, Warning):
  63.         text = str(message)
  64.         category = message.__class__
  65.     else:
  66.         text = message
  67.         message = category(message)
  68.     key = (text, category, lineno)
  69.     if registry.get(key):
  70.         return None
  71.     
  72.     for item in filters:
  73.         (action, msg, cat, mod, ln) = item
  74.         if (msg is None or msg.match(text)) and issubclass(category, cat):
  75.             if mod is None or mod.match(module):
  76.                 if ln == 0 or lineno == ln:
  77.                     break
  78.                     continue
  79.     else:
  80.         action = defaultaction
  81.     if action == 'ignore':
  82.         registry[key] = 1
  83.         return None
  84.     
  85.     linecache.getlines(filename, module_globals)
  86.     if action == 'error':
  87.         raise message
  88.     
  89.     if action == 'once':
  90.         registry[key] = 1
  91.         oncekey = (text, category)
  92.         if onceregistry.get(oncekey):
  93.             return None
  94.         
  95.         onceregistry[oncekey] = 1
  96.     elif action == 'always':
  97.         pass
  98.     elif action == 'module':
  99.         registry[key] = 1
  100.         altkey = (text, category, 0)
  101.         if registry.get(altkey):
  102.             return None
  103.         
  104.         registry[altkey] = 1
  105.     elif action == 'default':
  106.         registry[key] = 1
  107.     else:
  108.         raise RuntimeError('Unrecognized action (%r) in warnings.filters:\n %s' % (action, item))
  109.     showwarning(message, category, filename, lineno)
  110.  
  111.  
  112. def showwarning(message, category, filename, lineno, file = None):
  113.     '''Hook to write a warning to a file; replace if you like.'''
  114.     if file is None:
  115.         file = sys.stderr
  116.     
  117.     
  118.     try:
  119.         file.write(formatwarning(message, category, filename, lineno))
  120.     except IOError:
  121.         pass
  122.  
  123.  
  124.  
  125. def formatwarning(message, category, filename, lineno):
  126.     '''Function to format a warning the standard way.'''
  127.     s = '%s:%s: %s: %s\n' % (filename, lineno, category.__name__, message)
  128.     line = linecache.getline(filename, lineno).strip()
  129.     if line:
  130.         s = s + '  ' + line + '\n'
  131.     
  132.     return s
  133.  
  134.  
  135. def filterwarnings(action, message = '', category = Warning, module = '', lineno = 0, append = 0):
  136.     '''Insert an entry into the list of warnings filters (at the front).
  137.  
  138.     Use assertions to check that all arguments have the right type.'''
  139.     import re as re
  140.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  141.         raise AssertionError, 'invalid action: %r' % (action,)
  142.     if not isinstance(message, basestring):
  143.         raise AssertionError, 'message must be a string'
  144.     if not isinstance(category, (type, types.ClassType)):
  145.         raise AssertionError, 'category must be a class'
  146.     if not issubclass(category, Warning):
  147.         raise AssertionError, 'category must be a Warning subclass'
  148.     if not isinstance(module, basestring):
  149.         raise AssertionError, 'module must be a string'
  150.     if not isinstance(lineno, int) or lineno >= 0:
  151.         raise AssertionError, 'lineno must be an int >= 0'
  152.     item = (action, re.compile(message, re.I), category, re.compile(module), lineno)
  153.     if append:
  154.         filters.append(item)
  155.     else:
  156.         filters.insert(0, item)
  157.  
  158.  
  159. def simplefilter(action, category = Warning, lineno = 0, append = 0):
  160.     '''Insert a simple entry into the list of warnings filters (at the front).
  161.  
  162.     A simple filter matches all modules and messages.
  163.     '''
  164.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  165.         raise AssertionError, 'invalid action: %r' % (action,)
  166.     if not isinstance(lineno, int) or lineno >= 0:
  167.         raise AssertionError, 'lineno must be an int >= 0'
  168.     item = (action, None, category, None, lineno)
  169.     if append:
  170.         filters.append(item)
  171.     else:
  172.         filters.insert(0, item)
  173.  
  174.  
  175. def resetwarnings():
  176.     '''Clear the list of warning filters, so that no filters are active.'''
  177.     filters[:] = []
  178.  
  179.  
  180. class _OptionError(Exception):
  181.     '''Exception used by option processing helpers.'''
  182.     pass
  183.  
  184.  
  185. def _processoptions(args):
  186.     for arg in args:
  187.         
  188.         try:
  189.             _setoption(arg)
  190.         continue
  191.         except _OptionError:
  192.             msg = None
  193.             print >>sys.stderr, 'Invalid -W option ignored:', msg
  194.             continue
  195.         
  196.  
  197.     
  198.  
  199.  
  200. def _setoption(arg):
  201.     import re
  202.     parts = arg.split(':')
  203.     if len(parts) > 5:
  204.         raise _OptionError('too many fields (max 5): %r' % (arg,))
  205.     
  206.     while len(parts) < 5:
  207.         parts.append('')
  208.     (action, message, category, module, lineno) = [ s.strip() for s in parts ]
  209.     action = _getaction(action)
  210.     message = re.escape(message)
  211.     category = _getcategory(category)
  212.     module = re.escape(module)
  213.     if lineno:
  214.         
  215.         try:
  216.             lineno = int(lineno)
  217.             if lineno < 0:
  218.                 raise ValueError
  219.         except (ValueError, OverflowError):
  220.             None if module else []
  221.             None if module else []
  222.             raise _OptionError('invalid lineno %r' % (lineno,))
  223.         except:
  224.             None if module else []<EXCEPTION MATCH>(ValueError, OverflowError)
  225.         
  226.  
  227.     None if module else []
  228.     lineno = 0
  229.     filterwarnings(action, message, category, module, lineno)
  230.  
  231.  
  232. def _getaction(action):
  233.     if not action:
  234.         return 'default'
  235.     
  236.     if action == 'all':
  237.         return 'always'
  238.     
  239.     for a in ('default', 'always', 'ignore', 'module', 'once', 'error'):
  240.         if a.startswith(action):
  241.             return a
  242.             continue
  243.     
  244.     raise _OptionError('invalid action: %r' % (action,))
  245.  
  246.  
  247. def _getcategory(category):
  248.     import re
  249.     if not category:
  250.         return Warning
  251.     
  252.     if re.match('^[a-zA-Z0-9_]+$', category):
  253.         
  254.         try:
  255.             cat = eval(category)
  256.         except NameError:
  257.             raise _OptionError('unknown warning category: %r' % (category,))
  258.         except:
  259.             None<EXCEPTION MATCH>NameError
  260.         
  261.  
  262.     None<EXCEPTION MATCH>NameError
  263.     i = category.rfind('.')
  264.     module = category[:i]
  265.     klass = category[i + 1:]
  266.     
  267.     try:
  268.         m = __import__(module, None, None, [
  269.             klass])
  270.     except ImportError:
  271.         raise _OptionError('invalid module name: %r' % (module,))
  272.  
  273.     
  274.     try:
  275.         cat = getattr(m, klass)
  276.     except AttributeError:
  277.         raise _OptionError('unknown warning category: %r' % (category,))
  278.  
  279.     if not issubclass(cat, Warning):
  280.         raise _OptionError('invalid warning category: %r' % (category,))
  281.     
  282.     return cat
  283.  
  284. _processoptions(sys.warnoptions)
  285. simplefilter('ignore', category = PendingDeprecationWarning, append = 1)
  286. simplefilter('ignore', category = ImportWarning, append = 1)
  287.